home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 6 / The Arsenal Files 6 (Arsenal Computer).ISO / os2 / prjmg104.zip / TDDEMO.H < prev    next >
Text File  |  1995-02-13  |  514b  |  24 lines

  1. /*
  2. ##################################
  3. #            TDDemo.h:           #
  4. # Thread Demo Program for PrjMgr #
  5. ##################################
  6. # Written 1995 by Roland Knospe  #
  7. ##################################
  8. */
  9.  
  10. /* Parameter structure for each thread */
  11. typedef struct
  12. {
  13.    int Number,        /* Thread Number */
  14.        MaxCount;      /* Counter start value */
  15.    unsigned char x,y; /* Counter output position */
  16. } PARAM;
  17.  
  18.  
  19. /* Prototypes */
  20. int main( void );
  21. void MyThread( void *);
  22.  
  23.  
  24.